home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1999 January - Disc 2
/
Macworld (1999-01) (Disk 2).dmg
/
Serious Demos
/
Symbolic Composer 4.2
/
Environment
/
System
/
SYMBOL
/
Symbol Generators
/
Randomize
/
symbol-shuffle
< prev
Wrap
Text File
|
1998-10-23
|
327b
|
14 lines
symbol-shuffle pattern &optional seed
Suffles the element order in pattern and returns a new pattern. An optional random seed 0..0.99 can be supplied to initialize the randomization process.
(symbol-shuffle '(a b c d) 0.34)
--> (a c d b)
(symbol-shuffle '(a b c d))
--> (a c b d)
(symbol-shuffle '(a b c d))
--> (c d a b)